home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / RESOURCES / CH10 / creator / debugger / DebuggerGui.gui < prev    next >
Text File  |  2005-11-23  |  15KB  |  577 lines

  1. //--- OBJECT WRITE BEGIN ---
  2. new GuiControl(DebuggerGui) {
  3.     profile = "GuiWindowProfile";
  4.     horizSizing = "right";
  5.     vertSizing = "bottom";
  6.     position = "0 0";
  7.     extent = "640 480";
  8.     minExtent = "8 8";
  9.     visible = "True";
  10.     setFirstResponder = "False";
  11.     modal = "True";
  12.     helpTag = "0";
  13.  
  14.     new GuiButtonCtrl() {
  15.         profile = "GuiButtonProfile";
  16.         horizSizing = "right";
  17.         vertSizing = "bottom";
  18.         position = "8 4";
  19.         extent = "56 16";
  20.         minExtent = "8 8";
  21.         visible = "True";
  22.         setFirstResponder = "False";
  23.         modal = "True";
  24.         command = "Canvas.pushDialog(DebuggerConnectDlg, 80);";
  25.         helpTag = "0";
  26.         text = "Connect";
  27.     };
  28.     new GuiButtonCtrl() {
  29.         profile = "GuiButtonProfile";
  30.         horizSizing = "right";
  31.         vertSizing = "bottom";
  32.         position = "72 4";
  33.         extent = "56 16";
  34.         minExtent = "8 8";
  35.         visible = "True";
  36.         setFirstResponder = "False";
  37.         modal = "True";
  38.         command = "Canvas.pushDialog(OpenFileDialog, 80);";
  39.         helpTag = "0";
  40.         text = "File";
  41.     };
  42.     new GuiButtonCtrl() {
  43.         profile = "GuiButtonProfile";
  44.         horizSizing = "right";
  45.         vertSizing = "bottom";
  46.         position = "72 4";
  47.         extent = "56 16";
  48.         minExtent = "8 8";
  49.         visible = "True";
  50.         setFirstResponder = "False";
  51.         modal = "True";
  52.         command = "dbgStepIn();";
  53.         accelerator = "f7";
  54.         helpTag = "0";
  55.         text = "Step In";
  56.     };
  57.     new GuiButtonCtrl() {
  58.         profile = "GuiButtonProfile";
  59.         horizSizing = "right";
  60.         vertSizing = "bottom";
  61.         position = "136 4";
  62.         extent = "56 16";
  63.         minExtent = "8 8";
  64.         visible = "True";
  65.         setFirstResponder = "False";
  66.         modal = "True";
  67.         command = "dbgStepOver();";
  68.         accelerator = "f8";
  69.         helpTag = "0";
  70.         text = "Step Over";
  71.     };
  72.     new GuiButtonCtrl() {
  73.         profile = "GuiButtonProfile";
  74.         horizSizing = "right";
  75.         vertSizing = "bottom";
  76.         position = "200 4";
  77.         extent = "56 16";
  78.         minExtent = "8 8";
  79.         visible = "True";
  80.         setFirstResponder = "False";
  81.         modal = "True";
  82.         command = "dbgStepOut();";
  83.         accelerator = "f6";
  84.         helpTag = "0";
  85.         text = "Step Out";
  86.     };
  87.     new GuiButtonCtrl() {
  88.         profile = "GuiButtonProfile";
  89.         horizSizing = "right";
  90.         vertSizing = "bottom";
  91.         position = "264 4";
  92.         extent = "56 16";
  93.         minExtent = "8 8";
  94.         visible = "True";
  95.         setFirstResponder = "False";
  96.         modal = "True";
  97.         command = "dbgContinue();";
  98.         accelerator = "f9";
  99.         helpTag = "0";
  100.         text = "Run";
  101.     };
  102.     new GuiButtonCtrl() {
  103.         profile = "GuiButtonProfile";
  104.         horizSizing = "right";
  105.         vertSizing = "bottom";
  106.         position = "328 4";
  107.         extent = "56 16";
  108.         minExtent = "8 8";
  109.         visible = "True";
  110.         setFirstResponder = "False";
  111.         modal = "True";
  112.         command = "Canvas.pushDialog(DebuggerFindDlg, 80);";
  113.         helpTag = "0";
  114.         text = "Find";
  115.     };
  116.     new GuiTextCtrl(DebuggerCursorWatch) {
  117.         profile = "GuiTextProfile";
  118.         horizSizing = "width";
  119.         vertSizing = "bottom";
  120.         position = "398 4";
  121.         extent = "126 18";
  122.         minExtent = "8 8";
  123.         visible = "True";
  124.         setFirstResponder = "False";
  125.         modal = "True";
  126.         helpTag = "0";
  127.         text = "";
  128.         justify = "left";
  129.     };
  130.     new GuiTextCtrl(DebuggerStatus) {
  131.         profile = "GuiTextProfile";
  132.         horizSizing = "left";
  133.         vertSizing = "bottom";
  134.         position = "532 4";
  135.         extent = "60 18";
  136.         minExtent = "8 8";
  137.         visible = "True";
  138.         setFirstResponder = "False";
  139.         modal = "True";
  140.         helpTag = "0";
  141.         text = "NOT CONNECTED";
  142.             justify = "right";
  143.     };
  144.     new GuiFrameSetCtrl(DebuggerRootFrame) {
  145.         profile = "GuiContentProfile";
  146.         horizSizing = "width";
  147.         vertSizing = "height";
  148.         position = "0 24";
  149.         extent = "640 456";
  150.         minExtent = "8 8";
  151.         visible = "True";
  152.         setFirstResponder = "False";
  153.         modal = "True";
  154.         helpTag = "0";
  155.         columns = "0 486";
  156.         rows = "0";
  157.         borderWidth = "4";
  158.         borderColor = "0.000000, 0.000000, 0.000000, 0.000000";
  159.         borderEnable = "dynamic";
  160.         borderMovable = "dynamic";
  161.  
  162.         new GuiFrameSetCtrl(DebuggerLeftFrame) {
  163.             profile = "GuiContentProfile";
  164.             horizSizing = "width";
  165.             vertSizing = "height";
  166.             position = "0 0";
  167.             extent = "482 456";
  168.             minExtent = "8 8";
  169.             visible = "True";
  170.             setFirstResponder = "False";
  171.             modal = "True";
  172.             helpTag = "0";
  173.             columns = "0";
  174.             rows = "0 350";
  175.             borderWidth = "4";
  176.             borderColor = "0.000000, 0.000000, 0.000000, 0.000000";
  177.             borderEnable = "dynamic";
  178.             borderMovable = "dynamic";
  179.  
  180.             new GuiControl() {
  181.                 profile = "GuiDefaultProfile";
  182.                 horizSizing = "width";
  183.                 vertSizing = "height";
  184.                 position = "0 0";
  185.                 extent = "482 346";
  186.                 minExtent = "8 8";
  187.                 visible = "True";
  188.                 setFirstResponder = "True";
  189.                 modal = "True";
  190.                 helpTag = "0";
  191.  
  192.                 new GuiTextCtrl() {
  193.                     profile = "GuiTextProfile";
  194.                     horizSizing = "right";
  195.                     vertSizing = "bottom";
  196.                     position = "8 4";
  197.                     extent = "47 18";
  198.                     minExtent = "8 8";
  199.                     visible = "True";
  200.                     setFirstResponder = "False";
  201.                     modal = "True";
  202.                     helpTag = "0";
  203.                     text = "Open File:";
  204.                 };
  205.                 new GuiPopUpMenuCtrl(DebuggerFilePopup) {
  206.                     profile = "GuiPopUpMenuProfile";
  207.                     horizSizing = "right";
  208.                     vertSizing = "bottom";
  209.                     position = "64 4";
  210.                     extent = "160 18";
  211.                     minExtent = "8 8";
  212.                     visible = "True";
  213.                     setFirstResponder = "True";
  214.                     modal = "True";
  215.                     helpTag = "0";
  216.                     maxPopupHeight = "200";
  217.                 };
  218.                 new GuiScrollCtrl() {
  219.                     profile = "GuiScrollProfile";
  220.                     horizSizing = "width";
  221.                     vertSizing = "height";
  222.                     position = "0 24";
  223.                     extent = "482 321";
  224.                     minExtent = "8 8";
  225.                     visible = "True";
  226.                     setFirstResponder = "False";
  227.                     modal = "True";
  228.                     helpTag = "0";
  229.                     willFirstRespond = "True";
  230.                     hScrollBar = "dynamic";
  231.                     vScrollBar = "dynamic";
  232.                     constantThumbHeight = "False";
  233.  
  234.                     new DbgFileView(DebuggerFileView) {
  235.                         profile = "GuiTextArrayProfile";
  236.                         horizSizing = "right";
  237.                         vertSizing = "bottom";
  238.                         position = "0 -433";
  239.                         extent = "509 3904";
  240.                         minExtent = "8 8";
  241.                         visible = "True";
  242.                         setFirstResponder = "False";
  243.                         modal = "True";
  244.                         helpTag = "0";
  245.                     };
  246.                 };
  247.             };
  248.             new GuiControl() {
  249.                 profile = "GuiWindowProfile";
  250.                 horizSizing = "right";
  251.                 vertSizing = "bottom";
  252.                 position = "0 350";
  253.                 extent = "482 106";
  254.                 minExtent = "8 8";
  255.                 visible = "True";
  256.                 setFirstResponder = "False";
  257.                 modal = "True";
  258.                 helpTag = "0";
  259.  
  260.                 new GuiButtonCtrl() {
  261.                     profile = "GuiButtonProfile";
  262.                     horizSizing = "right";
  263.                     vertSizing = "bottom";
  264.                     position = "8 4";
  265.                     extent = "56 16";
  266.                     minExtent = "8 8";
  267.                     visible = "True";
  268.                     setFirstResponder = "False";
  269.                     modal = "True";
  270.                     command = "Canvas.pushDialog(DebuggerWatchDlg, 80);";
  271.                     helpTag = "0";
  272.                     text = "Add";
  273.                 };
  274.                 new GuiButtonCtrl() {
  275.                     profile = "GuiButtonProfile";
  276.                     horizSizing = "right";
  277.                     vertSizing = "bottom";
  278.                     position = "72 4";
  279.                     extent = "56 16";
  280.                     minExtent = "8 8";
  281.                     visible = "True";
  282.                     setFirstResponder = "False";
  283.                     modal = "True";
  284.                     command = "Canvas.pushDialog(DebuggerEditWatchDlg, 80);";
  285.                     helpTag = "0";
  286.                     text = "Edit";
  287.                 };
  288.                 new GuiButtonCtrl() {
  289.                     profile = "GuiButtonProfile";
  290.                     horizSizing = "right";
  291.                     vertSizing = "bottom";
  292.                     position = "136 4";
  293.                     extent = "56 16";
  294.                     minExtent = "8 8";
  295.                     visible = "True";
  296.                     setFirstResponder = "False";
  297.                     modal = "True";
  298.                     command = "DbgDeleteSelectedWatch();";
  299.                     helpTag = "0";
  300.                     text = "Delete";
  301.                 };
  302.                 new GuiButtonCtrl() {
  303.                     profile = "GuiButtonProfile";
  304.                     horizSizing = "right";
  305.                     vertSizing = "bottom";
  306.                     position = "200 4";
  307.                     extent = "56 16";
  308.                     minExtent = "8 8";
  309.                     visible = "True";
  310.                     setFirstResponder = "False";
  311.                     modal = "True";
  312.                     command = "DebuggerWatchView.clear();";
  313.                     helpTag = "0";
  314.                     text = "Clear";
  315.                 };
  316.                 new GuiButtonCtrl() {
  317.                     profile = "GuiButtonProfile";
  318.                     horizSizing = "right";
  319.                     vertSizing = "bottom";
  320.                     position = "264 4";
  321.                     extent = "56 16";
  322.                     minExtent = "8 8";
  323.                     visible = "True";
  324.                     setFirstResponder = "False";
  325.                     modal = "True";
  326.                     command = "DbgRefreshWatches();";
  327.                     helpTag = "0";
  328.                     text = "Refresh";
  329.                 };
  330.                 new GuiScrollCtrl() {
  331.                     profile = "GuiScrollProfile";
  332.                     horizSizing = "width";
  333.                     vertSizing = "height";
  334.                     position = "0 24";
  335.                     extent = "481 80";
  336.                     minExtent = "8 8";
  337.                     visible = "True";
  338.                     setFirstResponder = "False";
  339.                     modal = "True";
  340.                     helpTag = "0";
  341.                     willFirstRespond = "True";
  342.                     hScrollBar = "dynamic";
  343.                     vScrollBar = "dynamic";
  344.                     constantThumbHeight = "False";
  345.  
  346.                     new GuiTextListCtrl(DebuggerWatchView) {
  347.                         profile = "GuiTextListProfile";
  348.                         horizSizing = "right";
  349.                         vertSizing = "bottom";
  350.                         position = "0 0";
  351.                         extent = "640 8";
  352.                         minExtent = "8 8";
  353.                         visible = "True";
  354.                         setFirstResponder = "False";
  355.                         modal = "True";
  356.                         helpTag = "0";
  357.                         enumerate = "False";
  358.                         resizeCell = "True";
  359.                         columns = "0 200";
  360.                     };
  361.                 };
  362.             };
  363.         };
  364.         new GuiFrameSetCtrl(DebuggerRightFrame) {
  365.             profile = "GuiContentProfile";
  366.             horizSizing = "right";
  367.             vertSizing = "bottom";
  368.             position = "486 0";
  369.             extent = "154 456";
  370.             minExtent = "8 8";
  371.             visible = "True";
  372.             setFirstResponder = "False";
  373.             modal = "True";
  374.             helpTag = "0";
  375.             columns = "0";
  376.             rows = "0 150 350";
  377.             borderWidth = "4";
  378.             borderColor = "0.000000, 0.000000, 0.000000, 0.000000";
  379.             borderEnable = "dynamic";
  380.             borderMovable = "dynamic";
  381.  
  382.             new GuiScrollCtrl() {
  383.                 profile = "GuiScrollProfile";
  384.                 horizSizing = "width";
  385.                 vertSizing = "height";
  386.                 position = "0 0";
  387.                 extent = "154 146";
  388.                 minExtent = "8 8";
  389.                 visible = "True";
  390.                 setFirstResponder = "False";
  391.                 modal = "True";
  392.                 helpTag = "0";
  393.                 willFirstRespond = "True";
  394.                 hScrollBar = "dynamic";
  395.                 vScrollBar = "dynamic";
  396.                 constantThumbHeight = "False";
  397.  
  398.                 new GuiTextListCtrl(DebuggerCallStack) {
  399.                     profile = "GuiTextListProfile";
  400.                     horizSizing = "right";
  401.                     vertSizing = "bottom";
  402.                     position = "0 0";
  403.                     extent = "640 8";
  404.                     minExtent = "8 8";
  405.                     visible = "True";
  406.                     setFirstResponder = "False";
  407.                     modal = "True";
  408.                     helpTag = "0";
  409.                     enumerate = "False";
  410.                     resizeCell = "True";
  411.                     columns = "-1 -1 0";
  412.                 };
  413.             };
  414.             new GuiControl() {
  415.                 profile = "GuiWindowProfile";
  416.                 horizSizing = "right";
  417.                 vertSizing = "bottom";
  418.                 position = "0 150";
  419.                 extent = "154 196";
  420.                 minExtent = "8 8";
  421.                 visible = "True";
  422.                 setFirstResponder = "False";
  423.                 modal = "True";
  424.                 helpTag = "0";
  425.  
  426.                 new GuiButtonCtrl() {
  427.                     profile = "GuiButtonProfile";
  428.                     horizSizing = "right";
  429.                     vertSizing = "bottom";
  430.                     position = "4 4";
  431.                     extent = "56 16";
  432.                     minExtent = "8 8";
  433.                     visible = "True";
  434.                     setFirstResponder = "False";
  435.                     modal = "True";
  436.                     command = "Canvas.pushDialog(DebuggerBreakConditionDlg, 80);";
  437.                     helpTag = "0";
  438.                     text = "Condition";
  439.                 };
  440.                 new GuiButtonCtrl() {
  441.                     profile = "GuiButtonProfile";
  442.                     horizSizing = "right";
  443.                     vertSizing = "bottom";
  444.                     position = "68 4";
  445.                     extent = "56 16";
  446.                     minExtent = "8 8";
  447.                     visible = "True";
  448.                     setFirstResponder = "False";
  449.                     modal = "True";
  450.                     command = "DbgDeleteSelectedBreak();";
  451.                     helpTag = "0";
  452.                     text = "Delete";
  453.                 };
  454.                 new GuiButtonCtrl() {
  455.                     profile = "GuiButtonProfile";
  456.                     horizSizing = "right";
  457.                     vertSizing = "bottom";
  458.                     position = "132 4";
  459.                     extent = "56 16";
  460.                     minExtent = "8 8";
  461.                     visible = "True";
  462.                     setFirstResponder = "False";
  463.                     modal = "True";
  464.                     command = "DebuggerBreakPoints.clearBreaks();";
  465.                     helpTag = "0";
  466.                     text = "Clear";
  467.                 };
  468.                 new GuiScrollCtrl() {
  469.                     profile = "GuiScrollProfile";
  470.                     horizSizing = "width";
  471.                     vertSizing = "height";
  472.                     position = "0 24";
  473.                     extent = "153 171";
  474.                     minExtent = "8 8";
  475.                     visible = "True";
  476.                     setFirstResponder = "False";
  477.                     modal = "True";
  478.                     helpTag = "0";
  479.                     willFirstRespond = "True";
  480.                     hScrollBar = "dynamic";
  481.                     vScrollBar = "dynamic";
  482.                     constantThumbHeight = "False";
  483.  
  484.                     new GuiTextListCtrl(DebuggerBreakPoints) {
  485.                         profile = "GuiTextListProfile";
  486.                         horizSizing = "right";
  487.                         vertSizing = "bottom";
  488.                         position = "0 0";
  489.                         extent = "182 16";
  490.                         minExtent = "8 8";
  491.                         visible = "True";
  492.                         setFirstResponder = "False";
  493.                         modal = "True";
  494.                         helpTag = "0";
  495.                         enumerate = "False";
  496.                         resizeCell = "True";
  497.                         columns = "16 56 156";
  498.                     };
  499.                 };
  500.             };
  501.             new GuiControl() {
  502.                 profile = "GuiWindowProfile";
  503.                 horizSizing = "width";
  504.                 vertSizing = "height";
  505.                 position = "0 350";
  506.                 extent = "154 106";
  507.                 minExtent = "8 8";
  508.                 visible = "True";
  509.                 setFirstResponder = "False";
  510.                 modal = "True";
  511.                 helpTag = "0";
  512.  
  513.                 new GuiScrollCtrl() {
  514.                     profile = "GuiScrollProfile";
  515.                     horizSizing = "width";
  516.                     vertSizing = "height";
  517.                     position = "0 0";
  518.                     extent = "153 80";
  519.                     minExtent = "8 8";
  520.                     visible = "True";
  521.                     setFirstResponder = "False";
  522.                     modal = "True";
  523.                     helpTag = "0";
  524.                     willFirstRespond = "True";
  525.                     hScrollBar = "dynamic";
  526.                     vScrollBar = "dynamic";
  527.                     constantThumbHeight = "False";
  528.  
  529.                     new GuiTextListCtrl(DebuggerConsoleView) {
  530.                         profile = "GuiTextListProfile";
  531.                         horizSizing = "right";
  532.                         vertSizing = "bottom";
  533.                         position = "0 0";
  534.                         extent = "62 16";
  535.                         minExtent = "8 8";
  536.                         visible = "True";
  537.                         setFirstResponder = "False";
  538.                         modal = "True";
  539.                         helpTag = "0";
  540.                         enumerate = "False";
  541.                         resizeCell = "True";
  542.                         columns = "0";
  543.                     };
  544.                 };
  545.                 new GuiTextCtrl() {
  546.                     profile = "GuiTextProfile";
  547.                     horizSizing = "right";
  548.                     vertSizing = "top";
  549.                     position = "15 83";
  550.                     extent = "9 18";
  551.                     minExtent = "8 8";
  552.                     visible = "True";
  553.                     setFirstResponder = "False";
  554.                     modal = "True";
  555.                     helpTag = "0";
  556.                     text = "%";
  557.                 };
  558.                 new GuiTextEditCtrl(DbgConsoleEntry) {
  559.                     profile = "GuiTextEditProfile";
  560.                     horizSizing = "width";
  561.                     vertSizing = "top";
  562.                     position = "29 83";
  563.                     extent = "120 18";
  564.                     minExtent = "8 8";
  565.                     visible = "True";
  566.                     setFirstResponder = "False";
  567.                     modal = "True";
  568.                     altCommand = "DbgConsoleEntryReturn();";
  569.                     helpTag = "0";
  570.                     historySize = "32";
  571.                 };
  572.             };
  573.         };
  574.     };
  575. };
  576. //--- OBJECT WRITE END ---
  577.